/*menu*/
.lines {
  position: relative;
}
.lines,
.lines:after,
.lines:before {
  display: inline-block;
  background-color: #f5f5f5;
  width: 22px;
  height: 2px;
}
.lines:after,
.lines:before {
  position: absolute;
  left: 0;
  content: "";
  -webkit-transform-origin: 1.5px center;
  transform-origin: 1.5px center;
  -webkit-transition: transform 0.3s;
  transition: transform 0.3s;
}
.lines:before {
  top: 7px;
}
.lines:after {
  top: -7px;
}
.cross {
  position: relative;
  display: block;
  width: 30px;
  height: 30px;
  margin: 0;
  color: #fff;
  background-color: #fb6907;
}
.cross:after,
.cross:before {
  display: inline-block;
  height: 2px;
  background: #fff;
  position: absolute;
  content: "";
  -webkit-transform-origin: 50% 50%;
  transform-origin: 50% 50%;
  top: 50%;
  left: 50%;
  margin: -1px 0 0 -11px;
  width: 22px;
  -webkit-transition: -webkit-transform 0.1s ease;
  transition: transform 0.1s ease;
}
.cross:before {
  -ms-transform: rotate3d(0, 0, 1, 45deg);
  -webkit-transform: rotate3d(0, 0, 1, 45deg);
  transform: rotate3d(0, 0, 1, 45deg);
}
.cross:after {
  -ms-transform: rotate3d(0, 0, 1, -45deg);
  -webkit-transform: rotate3d(0, 0, 1, -45deg);
  transform: rotate3d(0, 0, 1, -45deg);
}
.menu__closebtn:hover .cross:before {
  -ms-transform: rotate3d(0, 0, 1, 0deg);
  -webkit-transform: rotate3d(0, 0, 1, 0deg);
  transform: rotate3d(0, 0, 1, 0deg);
}
.menu__closebtn:hover .cross:after {
  -ms-transform: rotate3d(0, 0, 1, 0deg);
  -webkit-transform: rotate3d(0, 0, 1, 0deg);
  transform: rotate3d(0, 0, 1, 0deg);
}
/* Menu styles */
.navfooter{
    position: absolute;
    bottom:5em;
    left:15px;
}
.menu {
  position: fixed;
  top: 120px;
  left: 0;
  width: 300px;
  height: calc(100vh - 120px);
  background: #fff;
}
.menu__wrap {
  position: absolute;
  top: 3.5em;
  bottom: 0;
  overflow: hidden;
  width: 100%;
}
.menu__level {
  position: absolute;
    top: 0;
    left: 0;
    visibility: hidden;
    overflow: hidden;
    width: 95%;
    height: 100%;
    margin: 0;
    padding: 0;
    list-style-type: none;
    transform: translateX(10px);
}
.menu__level--current {
  visibility: visible;
}
.menu__item {
  display: block;
  width: 100%;
  position: relative;
}
.menu__item::after {
  content: "";
  display: block;
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1px;
  box-shadow: inset 0px -1px 1px -1px #c8c7cc;
}
.menu__link {
  font-weight: 600;
  position: relative;
  display: block;
  padding: 10px 15px;
  color: #333;
  -webkit-transition: color 0.1s;
  transition: color 0.1s;
  font-size: 16px;
}
.menu__link:hover {
  text-decoration: none;
  color: #fb6907;
}
.menu__link[data-submenu]::after,
.menu__link[data-submenu]::before {
  display: inline-block;
  height: 2px;
  background: rgba(51, 51, 51, 0.27);
  position: absolute;
  content: "";
  top: 50%;
  margin-top: -1px;
  right: 15px;
  width: 16px;
  -webkit-transition: -webkit-transform 0.1s ease;
  transition: transform 0.1s ease;
}
.menu__link[data-submenu]::before {
  -ms-transform: rotate3d(0, 0, 1, -90deg);
  -webkit-transform: rotate3d(0, 0, 1, -90deg);
  transform: rotate3d(0, 0, 1, -90deg);
}
.menu__link:hover {
  color: #fb6907;
}
.menu__link[data-submenu]:hover::after,
.menu__link[data-submenu]:hover::before {
  background: #fb6907;
}
.menu__link--current::before {
  font-size: 1.5em;
  line-height: 0;
  position: absolute;
  top: 50%;
  left: 0.5em;
  height: 4px;
  color: #fb6907;
}
[class^="animate-"],
[class*=" animate-"] {
  visibility: visible;
}
.animate-outToRight .menu__item {
  -webkit-animation: outToRight 0.6s both cubic-bezier(0.7, 0, 0.3, 1);
  animation: outToRight 0.6s both cubic-bezier(0.7, 0, 0.3, 1);
}
@-webkit-keyframes outToRight {
  to {
    opacity: 0;
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
  }
}
@keyframes outToRight {
  to {
    opacity: 0;
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
  }
}
.animate-outToLeft .menu__item {
  -webkit-animation: outToLeft 0.6s both cubic-bezier(0.7, 0, 0.3, 1);
  animation: outToLeft 0.6s both cubic-bezier(0.7, 0, 0.3, 1);
}
@-webkit-keyframes outToLeft {
  to {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
  }
}
@keyframes outToLeft {
  to {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
  }
}
.animate-inFromLeft .menu__item {
  -webkit-animation: inFromLeft 0.6s both cubic-bezier(0.7, 0, 0.3, 1);
  animation: inFromLeft 0.6s both cubic-bezier(0.7, 0, 0.3, 1);
}
@-webkit-keyframes inFromLeft {
  from {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes inFromLeft {
  from {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
.animate-inFromRight .menu__item {
  -webkit-animation: inFromRight 0.6s both cubic-bezier(0.7, 0, 0.3, 1);
  animation: inFromRight 0.6s both cubic-bezier(0.7, 0, 0.3, 1);
}
@-webkit-keyframes inFromRight {
  from {
    opacity: 0;
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes inFromRight {
  from {
    opacity: 0;
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
.menu__breadcrumbs {
  font-size: 0.65em;
  line-height: 1;
  position: relative;
  padding: 2.5em 3.75em 1.5em 2.5em;
}
.menu__breadcrumbs a {
  font-weight: bold;
  display: inline-block;
  cursor: pointer;
  vertical-align: middle;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #5c5edc;
}
.menu__breadcrumbs a:last-child {
  pointer-events: none;
}
.menu__breadcrumbs a:hover {
  color: #8182e0;
}
.menu__breadcrumbs a:not(:last-child)::after {
  content: "\e902";
  font-family: "feather";
  display: inline-block;
  padding: 0 0.5em;
  color: #33353e;
}
.menu__breadcrumbs a:not(:last-child):hover::after {
  color: #33353e;
}
.menu__back {
  font-size: 16px;
  font-size: 1.05em;
  position: absolute;
  z-index: 100;
  top: 0;
  left: 20px;
  margin: 0;
  padding: 1.365em 0.65em 0 0;
  cursor: pointer;
  color: #2a2b30;
  border: none;
  background: none;
}
.menu__back--hidden {
  pointer-events: none;
  opacity: 0;
}
.menu__back:hover,
.menu__back:focus {
  outline: none;
  color: #fb6907;
}
/* Open and close buttons */
.action {
  position: absolute;
  display: block;
  margin: 0;
  padding: 0;
  cursor: pointer;
  border: none;
  background: none;
}
.action:focus {
  outline: none;
}
.action--open {
  font-size: 1.5em;
  top:10px;
  right:10px;
  color: #fff;
  position: fixed;
  z-index: 1000;
}
.action--close {
  font-size: 1.1em;
  top: 1.25em;
  right: 1em;
  color: #45464e;
}
@media screen and (max-width: 1120px) {
  .menu {
    z-index: 1000;
    top: 0;
    width: 100%;
    height: 100vh;
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
    -webkit-transition: -webkit-transform 0.3s;
    transition: transform 0.3s;
  }
  .menu--open {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@media (min-width: 1366px) {
  .container {
    width: 1240px;
  }
}
#cssmenu,
#cssmenu ul,
#cssmenu ul li,
#cssmenu ul li a,
#cssmenu #menu-button {
  margin: 0;
  padding: 0;
  border: 0;
  list-style: none;
  line-height: 1;
  display: block;
  position: relative;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}
#cssmenu:after,
#cssmenu > ul:after {
  content: ".";
  display: block;
  clear: both;
  visibility: hidden;
  line-height: 0;
  height: 0;
}
#cssmenu #menu-button {
  display: none;
}
#cssmenu {
  width: auto;
  font-family: "Open Sans", sans-serif;
  line-height: 1;
}
#menu-line {
  position: absolute;
  bottom: 0;
  left: 0;
  height: 3px;
  background: #ff6600;
  -webkit-transition: all 0.25s ease-out;
  -moz-transition: all 0.25s ease-out;
  -ms-transition: all 0.25s ease-out;
  -o-transition: all 0.25s ease-out;
  transition: all 0.25s ease-out;
}
#cssmenu > ul > li {
  float: left;
  font-size: 15px;
}
#cssmenu.align-center > ul {
  font-size: 0;
  text-align: center;
}
#cssmenu.align-center > ul > li {
  display: inline-block;
  float: none;
}
#cssmenu.align-center ul ul {
  text-align: left;
}
#cssmenu.align-right > ul > li {
  float: right;
}
#cssmenu.align-right ul ul {
  text-align: right;
}
#cssmenu > ul > li > a {
  padding: 30px 15px;
  font-size: 15px;
  text-decoration: none;
  text-transform: uppercase;
  color: #ffffff;
  -webkit-transition: color 0.2s ease;
  -moz-transition: color 0.2s ease;
  -ms-transition: color 0.2s ease;
  -o-transition: color 0.2s ease;
  transition: color 0.2s ease;
}
#cssmenu > ul > li:hover > a,
#cssmenu > ul > li.active > a {
  color: #f60;
}
#cssmenu > ul > li.has-sub > a {
  padding-right: 25px;
}
#cssmenu > ul > li.has-sub > a::after {
  position: absolute;
  top: 34px;
  right: 10px;
  width: 4px;
  height: 4px;
  border-bottom: 1px solid #ffffff;
  border-right: 1px solid #ffffff;
  content: "";
  -webkit-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  -o-transform: rotate(45deg);
  transform: rotate(45deg);
  -webkit-transition: border-color 0.2s ease;
  -moz-transition: border-color 0.2s ease;
  -ms-transition: border-color 0.2s ease;
  -o-transition: border-color 0.2s ease;
  transition: border-color 0.2s ease;
}
#cssmenu > ul > li.has-sub:hover > a::after {
  border-color: #f60;
}
#cssmenu ul ul {
  position: absolute;
  left: -9999px;
  background: #fff;
  padding: 5px;
}
#cssmenu li:hover > ul {
  left: auto;
}
#cssmenu.align-right li:hover > ul {
  right: 0;
}
#cssmenu ul ul ul {
  margin-left: 100%;
  top: 0;
}
#cssmenu.align-right ul ul ul {
  margin-left: 0;
  margin-right: 100%;
}
#cssmenu ul ul li {
  height: 0;
  -webkit-transition: height 0.2s ease;
  -moz-transition: height 0.2s ease;
  -ms-transition: height 0.2s ease;
  -o-transition: height 0.2s ease;
  transition: height 0.2s ease;
}
#cssmenu ul li:hover > ul > li {
  height: 32px;
}
#cssmenu ul ul li a {
  padding: 10px 20px;
  width: 110px;
  font-size: 14px;
  color: #333333;
  text-decoration: none;
  -webkit-transition: color 0.2s ease;
  -moz-transition: color 0.2s ease;
  -ms-transition: color 0.2s ease;
  -o-transition: color 0.2s ease;
  transition: color 0.2s ease;
}
#cssmenu ul ul li:hover > a,
#cssmenu ul ul li a:hover {
  color: #f60;
}
#cssmenu ul ul li.has-sub > a::after {
  position: absolute;
  top: 13px;
  right: 10px;
  width: 4px;
  height: 4px;
  border-bottom: 1px solid #dddddd;
  border-right: 1px solid #dddddd;
  content: "";
  -webkit-transform: rotate(-45deg);
  -moz-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  -o-transform: rotate(-45deg);
  transform: rotate(-45deg);
  -webkit-transition: border-color 0.2s ease;
  -moz-transition: border-color 0.2s ease;
  -ms-transition: border-color 0.2s ease;
  -o-transition: border-color 0.2s ease;
  transition: border-color 0.2s ease;
}
#cssmenu.align-right ul ul li.has-sub > a::after {
  right: auto;
  left: 10px;
  border-bottom: 0;
  border-right: 0;
  border-top: 1px solid #dddddd;
  border-left: 1px solid #dddddd;
}
#cssmenu ul ul li.has-sub:hover > a::after {
  border-color: #f60;
}
@media screen and (max-width: 1120px) {
  body {
    padding-top: 66px;
  }
  .moheader,
  .mobanner {
    display: block !important;
  }
  .header {
    display: none !important;
  }
}
.mobanner {
  display: none;
  position: relative;
  height: 260px;
  overflow: hidden;
  background-size: auto 260px;
  background-position: center;
}
.mobanner .bannertit {
  position: absolute;
  color: #fff;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}
.moheader {
  display: none;
  background: #223454;
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 999999;
}
.moheader .mologo {
  width: 60%;
  max-width: 200px;
}
.header {
  position: relative;
  padding-top:75px;
}
.header .otherinfo {
  position: absolute;
  top: 50%;
  width: 100%;
}
.header .otherinfo .otherinfoc {
  max-width: 1210px;
  margin: 0 auto;
}
.header .otherinfo .otherinfoc .otherinfoctit {
  color: #fff;
}
.header .otherinfo .otherinfoc .location {
  color: #fff;
}
.header .otherinfo .otherinfoc .location a {
  color: #fff;
}
.header .nav {
  width: 100%;
  position: fixed;
  z-index: 99999;
  top: 1px;
  background-color: #223454;
}
.header .nav .topbar {
  background-color: #223454;
  border-top-left-radius: 5px;
  border-top-right-radius: 5px;
  max-width: 1180px;
  height: 44px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  display: none;
}
.header .nav .topbar .topbarl {
  color: #fff;
}
.header .nav .topbar .topbars {
  position: relative;
}
.header .nav .topbar .topbars input {
  border-radius: 42px;
  height: 34px;
  line-height: 34px;
  padding: 0 12px 0 12px;
  width: 200px;
  background: rgba(255, 255, 255, 0.25);
  border-color: rgba(255, 255, 255, 0.3);
}
.header .nav .topbar .topbars ::-webkit-input-placeholder {
  color: #fff;
}
.header .nav .topbar .topbars ::-moz-placeholder {
  color: #fff;
}
.header .nav .topbar .topbars :-ms-input-placeholder {
  color: #fff;
}
.header .nav .topbar .topbars button {
  color: #fff;
  display: block;
  position: absolute;
  right: 25px;
  top: 8px;
  background: none;
  border:none;
}
.header .nav .topbar .topbars a:hover {
  text-decoration: none;
}
.header .nav .headerbar {
  max-width: 1210px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
}
.jq-img {
  display: block;
  width: 100%;
}
.in1 {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.in2 {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
}
.in3 {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  overflow: hidden;
}
.in4 {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 4;
  overflow: hidden;
}
.in5 {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 5;
  overflow: hidden;
}
.s1 .s1-title {
  background-image: url(../images/indexabout.jpg);
  background-repeat: no-repeat;
  line-height: 43px;
  height: 43px;
}
.s1 .s1-title a {
  text-decoration: none;
  color: #333;
}
.s1 .s1-p {
  line-height: 1.8;
}
.s1 .s1-contact {
  background-color: #f7f7f7;
  box-shadow: 0.419px 7.989px 12.74px 0.26px rgba(5, 0, 1, 0.21);
  background-image: url(../images/s1contact.png);
  background-repeat: repeat-x;
  background-position: top center;
}
.s1 .lxfs {
  float: left;
  width: 20px;
  line-height: 20px;
  border-right: 1px dashed #ccc;
  padding-right: 10px;
}
.s1 .erweima {
  width: 91px;
  height: 91px;
  float: left;
  margin: 0 15px;
}
.s1 .lianxisan {
  float: left;
  max-width: 430px;
}
.s1 .lianxisan img {
  margin-right: 10px;
}
.s1 .dianhua a {
  color: #fb6907;
}
.s2 {
  background-image: url(../images/s2bg.jpg);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}
.sc-title .ywfwtitle {
  height: 60px;
  line-height: 60px;
  color: #fff;
}
.sc-title .ywfwtitle .cheng {
  color: #f60;
}
.sc-title .titleen {
  color: #bcbcbc;
  line-height: 60px;
}
.sc-p {
  color: #fff;
}
.sc-title-r {
  color: #fff;
}
.tw1 {
  background-color: #0a1529;
  display: block;
  border-radius: 5px;
  overflow: hidden;
  -webkit-transition: all 0.3s ease-out;
  -moz-transition: all 0.3s ease-out;
  -o-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
}
.tw1 .tw1-txt .tw1-txt-t {
  color: #fff;
}
.tw1 .tw1-txt .tw1-txt-p {
  color: #ccc;
  line-height: 19px;
}
.tw1 .tw1-txt .tw1-txt-a a {
  color: #ccc;
  border: 1px solid #666;
  height: 36px;
  line-height: 36px;
  display: block;
  width: 100px;
  margin: 0 auto;
  text-decoration: none;
}
.tw1:hover {
  background-color: #fff;
  border-radius: 5px;
  transform: scale(1.02);
  box-shadow: 0 10px 30px rgba(121, 107, 93, 0.3);
  z-index: 9999;
}
.tw1:hover .tw1-txt .tw1-txt-t {
  color: #333;
}
.tw1:hover .tw1-txt .tw1-txt-p {
  color: #666;
}
.tw1:hover .tw1-txt .tw1-txt-a a {
  background-color: #f60;
  color: #fff;
  border: 1px solid #f60;
}
.post-content .post-title a {
  color: #000;
  text-decoration: none;
  line-height: 1.4;
}
.post-content .post-title a:hover {
  color: #f60;
}
.post-content .post-excerpt {
  color: #666;
}
@media screen and (max-width: 750px) {
  .s3-title img {
    width: 140px;
  }
}
.s4 {
  background-image: url(../images/s4bg.jpg);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}
.tw2 {
  background-color: #fff;
}
.tw2ch {
  color: #333;
  margin-bottom: 0;
  background-image: url(../images/tw2titbg.png);
  background-repeat: no-repeat;
  background-position: left top;
  padding-top: 3px;
  text-indent: 10px;
}
.tw2ch a {
  color: #333;
}
.tw2en {
  border-bottom: 1px solid #ececec;
  color: #ccc;
  line-height: 16px;
  text-indent: 10px;
}
.tw2listc {
  text-decoration: none;
  background-image: url(../images/tw2li.png);
  background-repeat: no-repeat;
  background-position: left center;
  text-indent: 15px;
}
.tw2listc a {
  color: #333;
  text-decoration: none;
}
.tw2listc a:hover {
  color: #f60;
}
.s5 .s5tel a {
  color: #f60;
}
.footer {
  background-image: url(../images/quxian.png);
  background-repeat: no-repeat;
  background-position: right bottom;
  background-color: #0a1529;
}
.footerform input[type="text"] {
  background-color: transparent;
  border: 1px solid #73737b;
  color: #fff;
  height: 38px;
  width: 100%;
  text-indent: 15px;
}
.footerform ::-webkit-input-placeholder {
  color: #73737b;
}
.footerform ::-moz-placeholder {
  color: #73737b;
}
.footerform :-ms-input-placeholder {
  color: #73737b;
}
.footerform input[type="submit"] {
  background-color: #f5f5f5f5;
  /*border: 1px solid #ccc;*/
  color: #fff;
  height: 38px;
  width: 100%;
  background-color: #fb6907;
}
.footerp {
  color: #85868c;
}
.footerwx p {
  color: #ccc;
}
.bottom {
  background-color: #050d1e;
  color: #606267;
}
.bottom a {
  color: #606267;
}
.secnav {
  margin-top: -30px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
  z-index: 999;
  display: flex;
  max-width: 1210px;
}
.secnav .secnavc {
  background-color: #efefef;
  width: 100%;
}
.secnav .secnavc .secnavcc {
  width: 25%;
  float: left;
}
.secnav .secnavc a {
  width: 100%;
  color: #333;
  display: block;
  text-decoration: none;
}
.secnav .secnavc a:hover,
.secnav .secnavc a.active {
  background: -moz-linear-gradient(left, #ff8f45 0%, #ff812d 64%) !important;
  background: -webkit-linear-gradient(left, #ff8f45 0%, #ff812d 64%) !important;
  background: linear-gradient(to right, #ff8f45 0%, #ff812d 64%) !important;
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff812d', endColorstr='#ff812d', GradientType=1) !important;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
  text-decoration: none;
  color: #ffffff !important;
}
.teamtitle {
  background-image: url(../images/teamtitilebg.png);
  background-repeat: no-repeat;
  background-position: left center;
}
.wpb_wrapper p {
  margin-bottom: 10px;
  font: normal 14px / 27px "Microsoft Yahei", Helvetica, Arial, Verdana, sans-serif;
  word-spacing: normal;
  color: #333;
}
.wpb_wrapper p a {
  color: #333;
  text-decoration: none;
}
.teamlist {
  background: #f7f7f7;
}
.teamlist .teamlistc {
  background: #fff;
}
.teamlist .teamlistcnoimg {
  background: #fff;
}
.teamlist .teamlistcnoimg h3 a {
  color: #333;
  text-decoration: none;
}
.teamlist .teamlistcnoimg h3 a:hover {
  color: #f60;
}
.teamlist .teamlistcnoimg p {
  color: #666;
}
.businesstit {
  background-color: #ff812d;
  color: #fff;
  width: 110px;
}
.contactform {
  background: #fafafa;
}
.contactform input[type="text"] {
  color: #8b8d94;
  border-width: 1px;
  border-color: rgba(51, 51, 51, 0.12);
  background-color: #fdfdfd;
  border-radius: 1px;
  font-size: 13px;
  line-height: 25px;
  height: 38px;
  text-indent: 10px;
}
.contactform input[type="submit"] {
  font: normal bold 14px / 16px "Roboto", Helvetica, Arial, Verdana, sans-serif;
  text-transform: none;
  -webkit-border-radius: 1px;
  border-radius: 1px;
  padding: 12px 18px 12px 18px;
  min-height: 38px;
  line-height: 38px;
  padding-top: 0;
  padding-bottom: 0;
  color: #fff;
  background-color: #fb6907;
  background: #fb6907;
  background: -webkit-linear-gradient("");
  background: linear-gradient("");
  border: none;
}
.sidebar {
  border-right: 1px solid rgba(51, 51, 51, 0.12);
  border-left: none;
}
.sidebar .sidetit {
  color: #333;
  border-left: 5px solid #fb6907;
  text-indent: 8px;
}
.sidebar .sideul li:first-child {
  border-top: none;
}
.sidebar .sideul li {
  border-top: 1px solid rgba(51, 51, 51, 0.12);
  color: #333;
  font-size: 13px;
  line-height: 25px;
  margin: 9px 0 0;
  padding: 10px 0 0;
}
.sidebar .sideul li a {
  color: #333;
  text-decoration: none;
  position: relative;
  display: inline-block;
  padding-left: 24px;
}
.sidebar .sideul li a:hover {
  color: #f60;
}
.sidebar .sideul li a:before,
.sidebar .sideul li a:after {
  position: absolute;
  width: 14px;
  top: 5px;
  left: 0;
}
.sidebar .sideul li a:before {
  background-color: rgba(51, 51, 51, 0.15);
  height: 14px;
  content: "";
}
.sidebar .sideul li a:after {
  content: "\e687";
  font-family: "iconfont";
  font-weight: 900;
  font-size: 12px;
  line-height: 14px;
  text-align: center;
}
.sidebar .sidesearch {
  position: relative;
}
.sidebar .sidesearch input {
  border-radius: 42px;
  height: 34px;
  line-height: 34px;
  padding: 0 12px 0 12px;
  width: 100%;
  border-width: 1px;
  border-color: rgba(51, 51, 51, 0.12);
  background-color: #fdfdfd;
  border-radius: 1px;
}
.sidebar .sidesearch ::-webkit-input-placeholder {
  color: rgba(139, 141, 148, 0.5);
}
.sidebar .sidesearch ::-moz-placeholder {
  color: rgba(139, 141, 148, 0.5);
}
.sidebar .sidesearch :-ms-input-placeholder {
  color: rgba(139, 141, 148, 0.5);
}
.sidebar .sidesearch button {
  color: rgba(139, 141, 148, 0.5);
  display: block;
  position: absolute;
  right: 15px;
  top: 8px;
  background: none;
  border:none;
}
.sidebar .sidesearch a:hover {
  text-decoration: none;
}
.sidebar .rescent .rescentcontent a {
  color: #333;
  line-height: 1.8;
}
.sidebar .rescent .rescentcontent a:hover {
  color: #f60;
  text-decoration: none;
}
@media screen and (max-width: 1120px) {
  .sidebar {
    border-right: none;
  }
}
@media (min-width: 768px) {
  .pull-right-sm {
    float: right !important;
  }
}
.pagination {
  list-style: none;
  margin: 0;
  padding: 0;
  display: inline-block;
  vertical-align: bottom;
}
.pagination li {
  display: inline-block !important;
  border: solid 1px #ebebeb;
  border-radius: 4px;
}
.pagination a {
  color: #333;
  padding: 8px 12px;
  line-height: 18px;
  display: block;
  transition: all 1s cubic-bezier(0.175, 0.885, 0.32, 1) 0s;
}
.pagination .disabled a:link,
.pagination .disabled a:visited,
.pagination .disabled a:hover {
  cursor: not-allowed;
  pointer-events: none;
  color: #ebebeb;
}
.pagination .active {
  pointer-events: none;
}
.pagination .active,
.pagination a:hover {
  transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1) 0s;
}
.pagination-group {
  border-right: solid 1px #ebebeb;
  border-radius: 4px;
}
.pagination-group li {
  float: left;
  border-right: 0;
  border-radius: 0;
}
.pagination-group li:not(:first-child):not(:last-child) {
  border-radius: 0;
}
.pagination-group li:first-child {
  border-radius: 4px 0 0 4px;
}
.pagination-group li:last-child {
  border-radius: 0 4px 4px 0;
}
.pagination-group .active,
.pagination-group a:hover {
  background: #f5f5f5;
  border-radius: 0;
}
.pagination-big a {
  padding: 10px 16px;
  font-size: 16px;
}
.pagination-small a {
  padding: 5px 10px;
  font-size: 12px;
}
.pagination.border-main .active a,
.pagination.border-sub .active a,
.pagination.border-dot .active a,
.pagination.border-black .active a,
.pagination.border-gray .active a,
.pagination.border-red .active a,
.pagination.border-yellow .active a,
.pagination.border-blue .active a,
.pagination.border-green .active a {
  color: #fff;
}
.post {
  border-top: 1px solid;
  border-color: rgba(51, 51, 51, 0.12);
  margin-top: 19px;
  padding-top: 30px;
}
.post .post-tit {
  line-height: 1.6;
}
.post .post-tit,
.post .post-meta {
  padding-top: 3px;
  padding-bottom: 3px;
}
.post .post-tit a,
.post .post-meta a {
  color: #333;
  position: relative;
}
.post .post-tit a:hover,
.post .post-meta a:hover {
  color: #f60;
  text-decoration: none;
}
.post .post-meta > span,
.post .post-meta > a {
  position: relative;
  display: inline-block;
  text-decoration: none;
  margin: 0 6px 0 0;
  padding: 0 9px 0 0;
}
.post .post-meta > a:after,
.post .post-meta > span:after {
  position: absolute;
  right: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  width: 3px;
  height: 3px;
  content: "";
  -webkit-border-radius: 50%;
  border-radius: 50%;
  background-color: #666;
}
.post .post-meta > a:last-child,
.post .post-meta > span:last-child {
  padding: 0;
  margin: 0;
}
.post .post-meta > a:last-child:after,
.post .post-meta > span:last-child:after {
  display: none;
}
.post .post-des {
  color: #666;
}
.post:first-child {
  border: none;
  padding-top: 0;
  margin-top: 0;
}
.post-tags a {
  padding: 1px 6px;
  margin: 2px;
  border: 1px solid;
  font: 400 10px/15px Arial, Verdana, sans-serif;
  text-decoration: none;
  letter-spacing: 0.3px;
  border-color: rgba(51, 51, 51, 0.12);
  color: #666;
}
.news-title {
  font-size: 24px;
  color: #333;
  text-align: center;
  line-height: 36px;
  font-weight: 600;
  border-bottom: 1px solid #e5e5e5;
  padding-bottom: 10px;
}
.news-content p {
  margin-bottom: 10px;
  line-height: 1.6;
}
.news-content img {
  width: 100% !important;
  height: 100% !important;
}
.post-navigation .nav-links {
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: -ms-flex;
}
.post-navigation {
  margin-bottom: 50px;
}
.post-navigation i {
  color: #ccc;
}
.post-navigation:last-child {
  margin-bottom: 0;
}
.post-navigation .nav-links {
  display: flex;
  padding: 25px 0;
  border-width: 1px 0;
  border-style: solid;
  border-color: rgba(51, 51, 51, 0.12);
}
.disabled-post-navigation.post-navigation .nav-links {
  -webkit-justify-content: center;
  -moz-justify-content: center;
  -ms-flex-pack: center;
  -ms-justify-content: center;
  justify-content: center;
}
.post-navigation .nav-links .back-to-list i[class^="fa"] {
  font-size: 28px;
}
.post-navigation a {
  color: #666;
}
.post-navigation a:hover {
  color: #ff812d;
}
.post-navigation .back-to-list,
.post-navigation .nav-next,
.post-navigation .nav-previous {
  position: relative;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: -ms-flex;
  display: flex;
  -webkit-flex-flow: column wrap;
  -moz-flex-flow: column wrap;
  -ms-flex-flow: column wrap;
  flex-flow: column wrap;
  -webkit-justify-content: center;
  -moz-justify-content: center;
  -ms-flex-pack: center;
  -ms-justify-content: center;
  justify-content: center;
  text-decoration: none;
}
.back-to-list {
  width: 30px;
}
.nav-previous {
  width: 45%;
  padding-left: 35px;
  margin-right: 30px;
}
.nav-previous i {
  position: absolute;
  left: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  font-size: 42px;
}
.nav-previous .post-title {
  -ms-flex-item-align: flex-start;
  align-self: flex-start;
  max-width: 100%;
}
.post-navigation .nav-next {
  padding-right: 35px;
  margin-left: 30px;
  width: 45%;
  text-align: right;
}
.post-navigation .nav-next i {
  position: absolute;
  right: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  font-size: 42px;
}
.images-list,
.project-post {
  position: relative;
}
.post-navigation .nav-next .post-title {
  -webkit-align-self: flex-end;
  -moz-align-self: flex-end;
  -ms-align-self: flex-end;
  -ms-flex-item-align: flex-end;
  align-self: flex-end;
  max-width: 100%;
}
.related .relatedtit {
  margin-bottom: 35px;
  position: relative;
  -webkit-align-self: center;
  -moz-align-self: center;
  -ms-align-self: center;
  -ms-flex-item-align: center;
  align-self: center;
  padding-bottom: 10px;
  margin-bottom: 40px;
}
.related .relatedtit:after {
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 60px;
  height: 3px;
  margin-left: -30px;
  content: "";
  background-color: #fb6907;
}
.related .relatedpost {
  overflow: hidden;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: -ms-flex;
  display: flex;
}
.related .relatedpost .mini-post-img a {
  display: block;
}
.related .relatedpost .post-content a {
  color: #666;
}
.related .relatedpost .post-content a:hover {
  color: #f60;
  text-decoration: none;
}
.lanmu72 .latest,.lanmu68 .latest{display:none;}
